home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 029a / tsbat27.zip / SETCOM.BAT < prev    next >
DOS Batch File  |  1991-08-07  |  495b  |  15 lines

  1. echo off
  2. echo Relocate the command interpreter
  3. echo By Prof. Timo Salmi, ts@chyde.uwasa.fi, Wed 07-08-1991
  4. echo .
  5.  
  6. rem The idea of this simple batch is to show how you can alter
  7. rem the location of your command interpreter. On my system r: is
  8. rem the ramdisk. This can be useful e.g. if you handle floppy disks
  9. rem which do not have the system files on them.
  10.  
  11. if not exist r:\cmand\nul md r:\cmand
  12. copy a:\command.com r:\cmand\command.com
  13. set comspec=r:\cmand\command.com
  14. echo on
  15.